home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / dskut / dcopy332.zip / DCUSAGE.C < prev    next >
C/C++ Source or Header  |  1986-10-28  |  1KB  |  30 lines

  1. /*************************************************************
  2.  *                                                           *
  3.  * Program DCOPY - physical sector to sector copy              *
  4.  * Copyright (c) 1986 Joerg Genius, Munich, West-Germany     *
  5.  *                                                           *
  6.  *************************************************************/
  7.  
  8. #include <stdio.h>
  9.  
  10. usage()
  11.  
  12. {
  13.    printf ("\rDCopy will copy the whole disk image of a floppydisk\r\n");
  14.    printf ("to another floppy or a diskfile (representing a diskimage) or vice versa.\r\n\n");
  15.    printf ("Possible commands are :\r\n\n");
  16.    printf ("DCOPY s: d:[ /v]  ||  [ /r]\r\n");
  17.    printf ("      where s: (source) and d: (destination) are diskdrives from A: to D:\r\n\n");
  18.    printf ("DCOPY filename[.ext] d:[[ /v]  || [ /r]][ /n]\r\n");
  19.    printf ("      will copy image 'filename' to disk d: (A: to D:)\r\n\n");
  20.    printf ("DCOPY d: filename[.ext][ /n]\r\n");
  21.    printf ("      will copy disk d: (A: to D:) to file 'filename'\r\n\n");
  22.    printf ("Option /v means verify after write; option /n suppresses\n");
  23.    printf ("file compression. In this case the .IMG file contains\n");
  24.    printf ("exactly as much blocks as the appropriate disk.\n");
  25.    printf ("Read-only mode is set by switch /r in order to verify disk-\n");
  26.    printf ("integrity only\n");
  27. }
  28.  
  29.  
  30.